home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / dup.c,v < prev    next >
Text File  |  1991-12-10  |  3KB  |  127 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.13;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.10.15.42.14;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * dup.c --
  32.  *
  33.  *    Procedure to map from Unix dup system call to Sprite.
  34.  *
  35.  * Copyright (C) 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: dup.c,v 1.1 86/04/17 15:19:02 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * dup --
  53.  *
  54.  *    Procedure to map from Unix dup system call to Sprite Fs_GetNewID.
  55.  *
  56.  * Results:
  57.  *    UNIX_ERROR is returned upon error, with the actual error code
  58.  *    stored in errno.  Upon success, the new file descriptor is returned.
  59.  *
  60.  * Side effects:
  61.  *    A new open file descriptor is allocated for the process.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.  
  66. int
  67. dup(oldStreamID)
  68.     int oldStreamID;        /* original stream identifier */
  69. {
  70.     ReturnStatus status;    /* result returned by Fs_GetNewID */
  71.     int newStreamID = FS_ANYID;    /* new stream identifier */
  72.  
  73.     status = Fs_GetNewID(oldStreamID, &newStreamID);
  74.     if (status != SUCCESS) {
  75.     errno = Compat_MapCode(status);
  76.     return(UNIX_ERROR);
  77.     } else {
  78.     return(newStreamID);
  79.     }
  80. }
  81.  
  82.  
  83. /*
  84.  *----------------------------------------------------------------------
  85.  *
  86.  * dup2 --
  87.  *
  88.  *    Procedure to map from Unix dup2 system call to Sprite Fs_GetNewID.
  89.  *
  90.  * Results:
  91.  *    UNIX_ERROR is returned upon error, with the actual error code
  92.  *    stored in errno.  Upon success, the new file descriptor is returned.
  93.  *
  94.  * Side effects:
  95.  *    A new open file descriptor is allocated for the process.
  96.  *
  97.  *----------------------------------------------------------------------
  98.  */
  99.  
  100. int
  101. dup2(oldStreamID, newStreamID)
  102.     int oldStreamID;        /* original stream identifier */
  103.     int newStreamID;        /* new stream identifier */
  104. {
  105.     ReturnStatus status;    /* result returned by Fs_GetNewID */
  106.  
  107.     status = Fs_GetNewID(oldStreamID, &newStreamID);
  108.     if (status != SUCCESS) {
  109.     errno = Compat_MapCode(status);
  110.     return(UNIX_ERROR);
  111.     } else {
  112.     return(UNIX_SUCCESS);
  113.     }
  114. }
  115. @
  116.  
  117.  
  118. 1.1.1.1
  119. log
  120. @Initial branch for Sprite server.
  121. @
  122. text
  123. @d11 1
  124. a11 1
  125. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/dup.c,v 1.1 88/06/19 14:31:13 ouster Exp $ SPRITE (Berkeley)";
  126. @
  127.